#activities {
    background-color: #f0efee;
    position: relative;
    margin-top: 7rem;
    min-height: 100vh;
    background-image: url("/media/footer_green.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.title-heading-act {

    color: #3e5039;
    font-family: Slick;

}
#activities .activities-banner {
    padding: 3rem;
}

#activities .activity-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
}

#activities .activity-images img {
    width: 352px;
    height: 231px;
    object-fit: cover;
    margin: 0.5rem;
}

.section-footer {
    /*background-image: url("/dist/images/Pr/footer_green.svg");*/
    height: 237px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
#activities .activity-images .img-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}
#activities .activity-images .image-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .8s ease;
    overflow: auto;
    background: rgba(84, 100, 76, 0.8);
    padding: 2rem;
}
#activities .activity-images .img-wrapper:hover .image-overlay {
    opacity: 1;
}
#activities .activity-images .img-wrapper .image-overlay p{
    color: #fff;
    font-family: FuturaGreek;
    font-weight: 300;
    font-size: 20px;
}

@media (min-width: 1440px) {
    #activities .activity-images {
        width: 90%;
    }
}
@media (max-width: 1439px) {
    #activities .activity-images {
        width: 90%;
    }
}

@media (max-width: 1199px) {
    #activities .activity-images {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #activities .activities-banner {
        padding: 2rem 0.5rem;
        justify-content: center;
        display: flex;
    }

    #activities .activities-banner img {
        width: 299px;
        height: 78px;
    }

    #activities .activity-images img {
        width: 298px;
        height: 230px;
    }
}